---------------------------------------------------------------------------
----- RAWR-Player
---------------------------------------------------------------------------

 RAWR-Player

  2007-2009, RAWR-Designs, Some Rights Reserved -
	Christopher "That Stevens Guy" Stevens
	Richard "Giant Eagle" Tuininga
	Callum "Flynsarmy" Efeimoff
 (CC) http://creativecommons.org/licenses/by-nc-sa/3.0/

 Any queries? -
	Email: contact[at]rawr-designs.com
	Forum: http://www.rejetto.com/forum/index.php?board=34.0
 	Homepage: http://rawr-designs.com

---------------------------------------------------------------------------
----- About RAWR-Player:
---------------------------------------------------------------------------

RAWR-Player is a dynamic flash player that we built for our templates.
It has many features that are made for our own scripts, but the default 
interface can be used on any website.

---------------------------------------------------------------------------
----- Available flashvars:
---------------------------------------------------------------------------

file - location of file
theme - tog, terayon, rawr_red, rawr_green, rawr_blue (default), rawr_dark, rawr_black, rawr_diehard
bgTop - 0x######
bgBottom - 0x######
fgNormal - 0x######
fgHover- 0x######
volume - 0-100
autoplay, autostart - on, off, 0, 1, true, false, enabled, disabled
playmethod - loop, single (default) list, shuffle (full mode)
context - on, off, 0, 1, true, false, enabled, disabled
mode - simple (default) full (see note)

Note--
'Full Mode' was designed to work with a javascript playlist. For
stand-alone use, simple mode is all that is required.

If you would like to attempt a javascript playlist, take a look
at our HFS templates and how they work.

---------------------------------------------------------------------------
----- File types:
---------------------------------------------------------------------------

The player will determine on its own how it will display a type of media:
.mp4 .m4a .aac .3gp .mov .flv .mp3

Sometimes FLV will not hold its aspect ratio, this is due to incomplete or
corrupt metadata, use a program like FLVMDI to repair them.

http://www.buraks.com/flvmdi/

Videos other than FLV must be H264/AVC codec.

---------------------------------------------------------------------------
----- JavaScript:
---------------------------------------------------------------------------

-- Communicating with JavaScript:

RAWR-Player can communicate with scripts, it can be used to keep
someones preferences in cookies for example using:

playerVolume(volume);
playbackMethod(playmethod);

There is another function, changeMedia(method); that allows the player to
communicate with an external javascript playlist. This only works with
'Full Mode' as explained earlier.

-- Communicating with RAWR-Player:

You can also talk to the player itself to control playback options.
As time goes on, more will be added but this is a start:

object.play();
object.pause();
object.stop(); (Only works for MP3!)
object.next();
object.previous();
object.method(method);
object.fullscreen(); (Only really useful with Video!)
object.volume(volume);	<< To-Do
object.change(file);	<< To-Do

Where object is the Flash Player.

---------------------------------------------------------------------------
----- Embedding example:
---------------------------------------------------------------------------

<object type="application/x-shockwave-flash" data="rawr_player.swf" width="320" height="50">
	<param name="movie" value="rawr_player.swf"/>
	<param name="wmode" value="direct"/>
	<param name="allowscriptaccess" value="always"/>
	<param name="allowfullscreen" value="true"/>
	<param name="flashvars" value="theme=tog&volume=50&file=Sdra!.mp3"/>
</object>

---------------------------------------------------------------------------
By using RAWR-Player you agree to the license. Please do not steal our work, 
reference where possible and if there is any major bugs, or fixes you have 
created on your own, please report them on the forum.